home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / site-packages / Crypto / Hash / SHA.py < prev    next >
Text File  |  2006-06-22  |  249b  |  12 lines

  1.  
  2. # Just use the SHA module from the Python standard library
  3.  
  4. __revision__ = "$Id: SHA.py,v 1.4 2002/07/11 14:31:19 akuchling Exp $"
  5.  
  6. from sha import *
  7. import sha
  8. if hasattr(sha, 'digestsize'):
  9.     digest_size = digestsize
  10.     del digestsize
  11. del sha
  12.